home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DLLMIX.PAK / DELPHI2C.DPR < prev    next >
Text File  |  1997-05-06  |  200b  |  14 lines

  1. program Delphi2C;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {DelphiToC};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TDelphiToBC, DelphiToBC);
  12.   Application.Run;
  13. end.
  14.